Min Property (FunctionSeries<T>)
In This Topic
Gets or sets the minimum value for function calculation.
Syntax
'Declaration
<System.ComponentModel.DefaultValueAttribute(0)>
Public Property Min As System.Nullable(Of Double)
'Usage
Dim instance As FunctionSeries(Of T)
Dim value As System.Nullable(Of Double)
instance.Min = value
value = instance.Min
[System.ComponentModel.DefaultValue(0)]
public System.Nullable<double> Min {get; set;}
public read-write property Min: System.Nullable;
System.ComponentModel.DefaultValueAttribute(0)
public function get,set Min : System.Nullable
[System.ComponentModel.DefaultValue(0)]
public: __property System.Nullable<double> get_Min();
public: __property void set_Min(
System.Nullable<double> value
);
[System.ComponentModel.DefaultValue(0)]
public:
property System.Nullable<double> Min {
System.Nullable<double> get();
void set ( System.Nullable<double> value);
}
See Also